#!/usr/bin/ruby

# **************************************************************************
# **************************************************************************
# **                                                                      **
# **  (c) 2000-2010 SOFHA GmbH                                            **
# **  This product is copyright protected by international laws.          **
# **  Any attempt to reverse engineer or copy this code is considered to  **
# **  be a copyright infringement and will entail legal steps by SOFHA.   **
# **                                                                      **
# **************************************************************************
# **************************************************************************
osv=`uname -r`

if osv =~ /^9/ || osv =~ /^10/ || osv =~ /^11/
    exit 0
else
    exit 64
end
